home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / pluginy Firefox / 14642 / 14642.xpi / chrome / content / import.xul < prev    next >
Extensible Markup Language  |  2009-10-01  |  1KB  |  30 lines

  1. <?xml version="1.0"?>
  2. <!-- Copyright 2009, Boomtango.com, All Rights Reserved -->
  3. <?xml-stylesheet href="chrome://global/skin/" type="text/css"?>
  4. <?xml-stylesheet href="chrome://browser/skin/browser.css" type="text/css" ?>
  5. <?xml-stylesheet href="chrome://boomtango/skin/bt.css" type="text/css" ?> 
  6. <!DOCTYPE page SYSTEM "chrome://boomtango/locale/bt.dtd">
  7. <window id="boomtangoImport" 
  8.     title="&import.title;"
  9.     onload="btimport.onLoad();"
  10.     style="background-color: white !important;"
  11.     xmlns:html="http://www.w3.org/1999/xhtml"
  12.             xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul">
  13.     <vbox>
  14.         <hbox>
  15.             <image id="logo" src="chrome://boomtango/skin/boomtangoandicon2.png" flex="0" />
  16.             <spacer flex="1" />
  17.         </hbox>
  18.         <description>&import.desc;</description>
  19.         <description>&import.desc2;</description>
  20.         <progressmeter mode="determined" id="prog" />
  21.         <hbox>
  22.             <spacer flex="1"/>
  23.             <button id="importbutton" label="&import.import;" oncommand="btimport.import();" />
  24.             <button id="closebutton" label="&import.cancel;" oncommand="btimport.close();" />
  25.         </hbox>
  26.     </vbox>
  27.  
  28.     <script src="import.js" />
  29. </window>
  30.